@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --dark-blue: #023047;
    --green: #06d6a0;
    --yellow: #ffd166;
    --light-color: #ffffff;
    --pink: #ef476f;
}

.pricing-table-container{ font-family: "Poppins", sans-serif; }

    .pricing-table-container .pricing-header{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pricing-table-container h2{ 
        margin-right: 100px;
        font-size: 30px;
     }

.pricing-table-container .plans-switch{
    width: 250px;
    background: var(--dark-blue);
    height: 55px;
    appearance: none;
    border-radius: 24px;
    outline: none;
    cursor: pointer;
    position: relative;
}

    .pricing-table-container .plans-switch::before{
        content: "";
        position: absolute;
        height: 44px;
        width: 120px;
        border-radius: 24px;
        background: var(--green);
        top: 50%;
        transform: translateY(-50%);
        left: 6px;
        transition: all .5s;
    }

        .pricing-table-container .plans-switch:checked::before{
            left: 138px;
            width: 106px;
        }

.pricing-table-container .plans-switch-container{
    position: relative;
    color: #fff;
    display: inline-block;
}

    .pricing-table-container .plans-switch-container .monthly{
        position: absolute;
        left: 30px;
        top: 18px;
        pointer-events: none;
    }

    .pricing-table-container .plans-switch-container .yearly{
        position: absolute;
        right: 30px;
        top: 18px;
        pointer-events: none;
    }

.pricing-table{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

    .pricing-table .table{
        background: var(--light-color);
        width: 320px;
        padding: 40px;
        position: relative;
    }

        .pricing-table .table .content{
            z-index: 200;
            position: relative;
        }

        .pricing-table .table.best-value{
            background: var(--dark-blue);
            color: #fff;
            border-radius: 24px;
            width: 320px;
        }

            .pricing-table .table.best-value .value{
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                text-align: center;
                padding: 8px;
                border-radius: 24px 24px 0 0;
                background: var(--pink);
                font-weight: bold;
            }

            .pricing-table .table.best-value .content{ padding-top: 32px; }

            .pricing-table .table.best-value .price{ font-size: 40px; }

            .pricing-table .table.best-value a.btn{
                background: var(--yellow);
                color: #000;
                transition: all .4s;
            }

                .pricing-table .table.best-value a.btn:hover{ background: #ffe4a4;}

            .pricing-table .table.best-value .description{ color: #eee; }

        

        .pricing-table .table img.table-bg{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
        }

    .pricing-table .price-container{
        display: flex;
        align-items: center;
    }

    .pricing-table h3{
        font-size: 30px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .pricing-table .price-container .price{
        font-size: 40px;
        font-weight: bold;
        padding-right: 16px;
    }

    .pricing-table .description{
        font-size: 20px;
        text-align: justify;
        color: #222;
    }

    .pricing-table .features{
        list-style: none;
        padding: 0;
    }

        .pricing-table .features li{ 
            margin: 24px 0;
            display: flex;
            align-items: center;
        }

            .pricing-table .features li::before{
                content: url('');
                margin-right: 16px;
                margin-top: 4px;
            }

    .pricing-table a.btn{
        background: var(--dark-blue);
        padding: 16px 0;
        display: inline-block;
        width: 100%;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        border-radius: 24px;
        margin-top: 16px;
        transition: all .4s;
    }

        .pricing-table a.btn:hover{ background: #022435;}

@media screen and (max-width: 768px){
    .pricing-table{
        display: grid;
        gap: 20px;
    }

    .pricing-table .table{
        width: 280px;
        border-radius: 24px;
        overflow: hidden;
    }

    .pricing-table h3{
        text-align: center;
    }

    .pricing-table .price-container{
        justify-content: center;
    }
}

@media screen and (max-width: 660px){
    .pricing-table-container .pricing-header{
        display: flex;
        flex-wrap: wrap;
    }

        .pricing-table-container .pricing-header h2{
            text-align: center;
        }

        .pricing-table-container .plans-switch-container{
            align-items: center;
            justify-content: center;
        }
}

.blank-section {
    width: 100%;
    height: 50px; /* Ajusta la altura según necesites */
    background-color: white; /* Puedes cambiar el color si deseas */
}